* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

a:hover {
    color: white;
}

.header {
    background-color: #00ACC1;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.admin-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-avatar {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb a {
    text-decoration: none;
    color: #4A5568;
}

.breadcrumb a:hover {
    color: #2D3748;
}

.home {
    text-decoration: none;
    color: white;
}

.sidebar {
    width: 250px;
    background-color: #2D3748;
    color: white;
    position: fixed;
    height: 100vh;
    top: 60px;
    left: 0;
    overflow-y: auto;
    z-index: 99;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    color: white;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-item.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.main-content {
    margin-left: 250px;
    margin-top: 60px;
    padding: 1.5rem;
    background-color: #F7FAFC;
    min-height: calc(100vh - 60px);
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #4A5568;
}

.action-button {
    background-color: #00ACC1;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.action-button:hover {
    background-color: #0097A7;
}
.menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
    .sidebar.active { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .table-container { overflow-x: auto; }
}

.room-image {
    width: 200px; /* Larger image size */
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-bar {
    z-index: 1;
    position: relative;
}

.border-dashed {
    border-style: dashed !important;
    border-width: 2px !important;
}

/* Make table more responsive */
@media (max-width: 1400px) {
    .table-container {
        overflow-x: auto;
        padding-bottom: 15px;
    }
}